100
How can I programmatically clear the control's filter
<BODY onload="Init()">
<SCRIPT LANGUAGE="VBScript">
Function Pivot1_Click()
	With Pivot1
		.ClearFilter 
	End With
End Function
</SCRIPT>

<OBJECT CLASSID="clsid:5C9DF3D3-81B1-42C4-BED6-658F17748686" id="Pivot1"></OBJECT>

<SCRIPT LANGUAGE="VBScript">
Function Init()
	With Pivot1
		.BeginUpdate 
		.Import "C:\Program Files\Exontrol\ExPivot\Sample\data.txt"
		.FilterBarPromptVisible = 1
		.FilterBarPromptPattern = "USA"
		.EndUpdate 
	End With
End Function
</SCRIPT>
</BODY>

99
Is it possible to prevent closing the control's filter bar, so it is always shown (prompt-combined)

<BODY onload="Init()">
<OBJECT CLASSID="clsid:5C9DF3D3-81B1-42C4-BED6-658F17748686" id="Pivot1"></OBJECT>

<SCRIPT LANGUAGE="VBScript">
Function Init()
	With Pivot1
		.BeginUpdate 
		.Import "C:\Program Files\Exontrol\ExPivot\Sample\data.txt"
		.FilterBarPromptPattern = "USA"
		.FilterBarPromptVisible = 3 ' FilterBarVisibleEnum.exFilterBarVisible Or FilterBarVisibleEnum.exFilterBarPromptVisible
		.EndUpdate 
	End With
End Function
</SCRIPT>
</BODY>

98
Is it possible to prevent closing the control's filter bar, so it is always shown (prompt)

<BODY onload="Init()">
<OBJECT CLASSID="clsid:5C9DF3D3-81B1-42C4-BED6-658F17748686" id="Pivot1"></OBJECT>

<SCRIPT LANGUAGE="VBScript">
Function Init()
	With Pivot1
		.BeginUpdate 
		.Import "C:\Program Files\Exontrol\ExPivot\Sample\data.txt"
		.FilterBarPromptVisible = 1
		.FilterBarPromptPattern = "USA"
		.EndUpdate 
	End With
End Function
</SCRIPT>
</BODY>

97
Is it possible to prevent closing the control's filter bar, so it is always shown

<BODY onload="Init()">
<OBJECT CLASSID="clsid:5C9DF3D3-81B1-42C4-BED6-658F17748686" id="Pivot1"></OBJECT>

<SCRIPT LANGUAGE="VBScript">
Function Init()
	With Pivot1
		.BeginUpdate 
		.Import "C:\Program Files\Exontrol\ExPivot\Sample\data.txt"
		.FilterBarCaption = "len(value) = 0 ? `<fgcolor=808080>no filter` : value"
		.FilterBarPromptVisible = 2
		.EndUpdate 
	End With
End Function
</SCRIPT>
</BODY>

96
How can I find if the control is running in DPI mode
<BODY onload="Init()">
<OBJECT CLASSID="clsid:5C9DF3D3-81B1-42C4-BED6-658F17748686" id="Pivot1"></OBJECT>

<SCRIPT LANGUAGE="VBScript">
Function Init()
	With Pivot1
		alert( .FormatABC("dpi = 1 ? `normal/stretch mode` : `dpi mode`") )
	End With
End Function
</SCRIPT>
</BODY>

95
If I connect it to a datasource, all works perfectly but the records that I see in the control is a little number of total of the recordset. I need to show all 60.000 rows of the recordset without click on the [...] button. It s possible to setting up this parameters
<BODY onload="Init()">
<OBJECT CLASSID="clsid:5C9DF3D3-81B1-42C4-BED6-658F17748686" id="Pivot1"></OBJECT>

<SCRIPT LANGUAGE="VBScript">
Function Init()
	With Pivot1
		.DisplayPivotData = -1
		.Import "C:\Program Files\Exontrol\ExPivot\Sample\data.txt"
	End With
End Function
</SCRIPT>
</BODY>

94
How do I change the drop down filter icon/button (white)

<BODY onload="Init()">
<OBJECT CLASSID="clsid:5C9DF3D3-81B1-42C4-BED6-658F17748686" id="Pivot1"></OBJECT>

<SCRIPT LANGUAGE="VBScript">
Function Init()
	With Pivot1
		.BeginUpdate 
		With .VisualAppearance
			.Add 2,"gBFLBCJwBAEHhEJAAEhABX8GACAADACAxSDEMQBQKAAzQFAYbhgHCGAAGQaBUgmFgAQhFcZQSKUOQTDKNYykCIRSDUJYkSZEIyjBI8ExXFqNACkGKwYgmNYiTLAcgAN" & _
	"J0WBaGIZJ4gOT5fDKMoEDRRYADFCscwxJybQAqGQKKb+VgAVY/cTyBIAEQSKA0TDOQ5TSKWB4JPZQRBEbZMNBtBIUJquKaqShdQJCU5FdY3Xblez9P7AMBwLFEC4NQ8Y" & _
	"NYuPhjR4dRTIMhvVAsUArFh8Zg9GZZFjmDIDT4ydBLTQwcyVIKnP5qOa6XbmPoCQDYKxZHYxPzVDa3axuL76dqCAT7XrXNy1TbNRrzQKfcJqfCbdw2YaDZLOOT3fjuI4" & _
	"hhKaRzFAHJ+jYQ4xHuY4gHuGIXGeExqC8Tp6C+PoEm+G5ImycRgh0XwvDGa5rgOeoejyXwnFeQp2mkf5ClgBB9gCWIYAwfYAEKV58mkdwOggNArgOXY2EWLoDkKOA0mg" & _
	"bhOGgZApgaSBIHWSYHSmbApgYThmESZYJkIeIkgeCpfliLIHgpMIcmUYYYmODAlg2SI4mWfRfGOEguDcCRjFYAJihCQhJBSDoRmONgKEcI4kFCEJhhOVYTmYnAlEAQhW" & _
	"BMJYJGYWoWmWSR2F6F5lnkWAQhUAgpEieRWEuSYkjWGpmkmNhuhuZwJkYcocmaaYkjyEhngnUA6lEFAlAEgI="
			.Add 1,"CP:2 -6 -4 2 4"
		End With
		.Background(0) = &H1000000
		.Background(32) = .BackColor
		.HeaderVisible = True
		.HeaderHeight = 24
		.Import "C:\Program Files\Exontrol\ExPivot\Sample\data.txt"
		.DisplayFilterList = 288 ' FilterListEnum.exShowCheckBox Or FilterListEnum.exSortItemsAsc
		.PivotBarVisible = 1
		.EndUpdate 
	End With
End Function
</SCRIPT>
</BODY>

93
How do I change the drop down filter icon/button (black)

<BODY onload="Init()">
<OBJECT CLASSID="clsid:5C9DF3D3-81B1-42C4-BED6-658F17748686" id="Pivot1"></OBJECT>

<SCRIPT LANGUAGE="VBScript">
Function Init()
	With Pivot1
		.BeginUpdate 
		With .VisualAppearance
			.Add 1,"gBFLBCJwBAEHhEJAAEhABXUIQAAYAQGKIcBiAKBQAGYBIJDEMgzDDAUBjKKocQTC4AIQjCK4JDKHYJRpHEZyCA8EhqGASRAFUQBYiWE4oSpLABQaK0ZwIGyRIrkGQgQ" & _
	"gmPYDSDNU4zVIEEglBI0TDNczhNDENgtGYaJqHIYpZBcM40TKkEZoSIITZcRrOEBiRL1S0RBhGcRUHZlWzdN64LhuK47UrWdD/XhdVzXRbjfz1Oq+bxve48Br7A5yYTh" & _
	"dr4LhOFQ3RjIL4xbIcUwGe6VZhjOLZXjmO49T69HTtOCYBEBA"
		End With
		.Background(0) = &H1000000
		.Background(32) = -1
		.BackColorHeader = RGB(0,0,0)
		.ForeColorHeader = RGB(255,255,255)
		.HeaderVisible = True
		.HeaderHeight = 22
		.Import "C:\Program Files\Exontrol\ExPivot\Sample\data.txt"
		.DisplayFilterList = 288 ' FilterListEnum.exShowCheckBox Or FilterListEnum.exSortItemsAsc
		.EndUpdate 
	End With
End Function
</SCRIPT>
</BODY>

92
How do I prevent showing the control's BackColorAlternate property on empty / non-items part of the control

<BODY onload="Init()">
<OBJECT CLASSID="clsid:5C9DF3D3-81B1-42C4-BED6-658F17748686" id="Pivot1"></OBJECT>

<SCRIPT LANGUAGE="VBScript">
Function Init()
	With Pivot1
		.BeginUpdate 
		.BackColorAlternate = &H7ff0f0f0
		.Import "C:\Program Files\Exontrol\ExPivot\Sample\data.txt"
		.PivotRows = "12"
		.PivotColumns = "sum(5)"
		.EndUpdate 
	End With
End Function
</SCRIPT>
</BODY>

91
How can I find out if the user clicks the grid's header
<BODY onload="Init()">
<SCRIPT LANGUAGE="VBScript">
Function Pivot1_MouseMove(Button,Shift,X,Y)
	With Pivot1
		alert( "Type of ColumnFromPoint: " )
		alert( .ColumnFromPoint(-1,-1) )
		alert( " should not be VT_NULL" )
		alert( "Type of ValueFromPoint: " )
		alert( .ValueFromPoint(-1,-1) )
		alert( " should be VT_NULL" )
	End With
End Function
</SCRIPT>

<OBJECT CLASSID="clsid:5C9DF3D3-81B1-42C4-BED6-658F17748686" id="Pivot1"></OBJECT>

<SCRIPT LANGUAGE="VBScript">
Function Init()
	With Pivot1
		.Import "C:\Program Files\Exontrol\ExPivot\Sample\data.txt"
		.PivotRows = "0"
		.PivotColumns = "sum(5)"
	End With
End Function
</SCRIPT>
</BODY>

90
What should I set FormatPivotHeader to, to show it on the columns header only

<BODY onload="Init()">
<OBJECT CLASSID="clsid:5C9DF3D3-81B1-42C4-BED6-658F17748686" id="Pivot1"></OBJECT>

<SCRIPT LANGUAGE="VBScript">
Function Init()
	With Pivot1
		.BeginUpdate 
		.Import "C:\Program Files\Exontrol\ExPivot\Sample\data.txt"
		.PivotRows = "0"
		.PivotColumns = "sum(5)/12"
		.FormatPivotHeader = "(iaggregate ? ( caption + ` <off -6><font ;6>(` + lower(caggregate) + ')</off></font>') : caption) + ( ( display=1 ? `<c>Date: " & _
	"<b><upline><dotline>` + date(`now`) : `` ) + `</dotline> </b>` )"
		.EndUpdate 
	End With
End Function
</SCRIPT>
</BODY>

89
What should I set FormatPivotHeader to, to show "Report Generated on 7/9/2016 14:20" etc when the report is executed (ie the date and time will change)

<BODY onload="Init()">
<OBJECT CLASSID="clsid:5C9DF3D3-81B1-42C4-BED6-658F17748686" id="Pivot1"></OBJECT>

<SCRIPT LANGUAGE="VBScript">
Function Init()
	With Pivot1
		.BeginUpdate 
		.Import "C:\Program Files\Exontrol\ExPivot\Sample\data.txt"
		.PivotRows = "0"
		.PivotColumns = "sum(5)/12"
		.FormatPivotHeader = "(iaggregate ? (`<b>` + caption + `</b> <off -6><font ;6>(` + lower(caggregate) + ')</off></font>') : caption) + `<r>ReportDate:" & _
	" ` + date(`now`)"
		.EndUpdate 
	End With
End Function
</SCRIPT>
</BODY>

88
Is it possible to display aggregate result on parent rows as well

<BODY onload="Init()">
<OBJECT CLASSID="clsid:5C9DF3D3-81B1-42C4-BED6-658F17748686" id="Pivot1"></OBJECT>

<SCRIPT LANGUAGE="VBScript">
Function Init()
	With Pivot1
		.BeginUpdate 
		.HeaderHeight = 22
		.DefaultItemHeight = 20
		.Import "C:\Program Files\Exontrol\ExPivot\Sample\data.txt"
		.PivotRows = "12[bold],0"
		With .FormatConditionalAppearances.Add("nempty","not empty","")
			.Expression = "len(value) != 0"
			.BackColor = RGB(240,240,240)
		End With
		.PivotColumns = "sum(5)[nempty]/6"
		.IncludeExpandColumn = 1
		.DrawGridLines = 0
		.ShowBranchRows = 33 ' ShowBranchRowsEnum.exBranchIncludeAggregate Or ShowBranchRowsEnum.exBranchTree
		.EndUpdate 
	End With
End Function
</SCRIPT>
</BODY>

87
How do I show expanded/collapsed rows

<BODY onload="Init()">
<OBJECT CLASSID="clsid:5C9DF3D3-81B1-42C4-BED6-658F17748686" id="Pivot1"></OBJECT>

<SCRIPT LANGUAGE="VBScript">
Function Init()
	With Pivot1
		.BeginUpdate 
		.HeaderHeight = 22
		.DefaultItemHeight = 20
		.Import "C:\Program Files\Exontrol\ExPivot\Sample\data.txt"
		.PivotRows = "12[bold],0"
		With .FormatConditionalAppearances.Add("nempty","not empty","")
			.Expression = "len(value) != 0"
			.BackColor = RGB(240,240,240)
		End With
		.PivotColumns = "sum(5)[nempty]/6"
		.IncludeExpandColumn = 1
		.DrawGridLines = 0
		.EndUpdate 
	End With
End Function
</SCRIPT>
</BODY>

86
How do I show expanded/collapsed columns

<BODY onload="Init()">
<OBJECT CLASSID="clsid:5C9DF3D3-81B1-42C4-BED6-658F17748686" id="Pivot1"></OBJECT>

<SCRIPT LANGUAGE="VBScript">
Function Init()
	With Pivot1
		.BeginUpdate 
		.HeaderHeight = 22
		.DefaultItemHeight = 20
		.Import "C:\Program Files\Exontrol\ExPivot\Sample\data.txt"
		.PivotRows = "0"
		With .FormatConditionalAppearances.Add("nempty","not empty","")
			.Expression = "len(value) != 0"
			.BackColor = RGB(240,240,240)
		End With
		.PivotColumns = "sum(5)[nempty]/12"
		.FormatPivotHeader = "(iaggregate ? ( caption + ` <r>[` + lower(caggregate) + `]` ) : caption)"
		.IncludeExpandColumn = 1
		.EndUpdate 
	End With
End Function
</SCRIPT>
</BODY>

85
Where you have say "Sum of ...." as the first row heading of the pivot are there and options to be able to change this text as a whole

<BODY onload="Init()">
<OBJECT CLASSID="clsid:5C9DF3D3-81B1-42C4-BED6-658F17748686" id="Pivot1"></OBJECT>

<SCRIPT LANGUAGE="VBScript">
Function Init()
	With Pivot1
		.BeginUpdate 
		.Import "C:\Program Files\Exontrol\ExPivot\Sample\data.txt"
		.PivotRows = "0"
		With .FormatConditionalAppearances.Add("nempty","not empty","")
			.Expression = "len(value) != 0"
			.BackColor = RGB(240,240,240)
		End With
		.PivotColumns = "sum(5)[nempty]/12"
		.FormatPivotHeader = "(iaggregate ? (`<b>` + caption + `</b> <off -6><font ;6>(` + lower(caggregate) + ' )') : caption)"
		.EndUpdate 
	End With
End Function
</SCRIPT>
</BODY>

84
How can I get the data column from the cursor
<BODY onload="Init()">
<SCRIPT LANGUAGE="VBScript">
Function Pivot1_MouseMove(Button,Shift,X,Y)
	With Pivot1
		alert( "DataColumn" )
		alert( .DataColumnFromPoint(-1,-1) )
	End With
End Function
</SCRIPT>

<OBJECT CLASSID="clsid:5C9DF3D3-81B1-42C4-BED6-658F17748686" id="Pivot1"></OBJECT>

<SCRIPT LANGUAGE="VBScript">
Function Init()
	With Pivot1
		.Import "C:\Program Files\Exontrol\ExPivot\Sample\data.txt"
		.PivotRows = "0"
		.PivotColumns = "sum(5)[content=numeric]"
		.Refresh 
	End With
End Function
</SCRIPT>
</BODY>

83
Is there any way for the user to change the alignment at runtime (using excontextmenu)

<BODY onload="Init()">
<SCRIPT LANGUAGE="VBScript">
Function Pivot1_RClick()
	With Pivot1
		h = .DataColumns.item(5).Alignment ' .DataColumns.item(5).Alignment
		Set c = CreateObject("Exontrol.ContextMenu")
		With c
			.FlatImageWidth = 0
			.ToString = "Alignment[align=1][dis],[group=0x71](Left[typ=2][grp=100][close=0][id=0],Center[typ=2][grp=100][close=0][id=1],Right[typ=2][grp" & _
	"=100][close=0][id=2])"
			.item(h).Checked = True
			h = .Select()
		End With
		With .DataColumns.item(5)
			.Alignment = h ' h
			.HeaderAlignment = h ' h
		End With
		.Refresh 
	End With
End Function
</SCRIPT>

<OBJECT CLASSID="clsid:5C9DF3D3-81B1-42C4-BED6-658F17748686" id="Pivot1"></OBJECT>

<SCRIPT LANGUAGE="VBScript">
Function Init()
	With Pivot1
		.PivotBarVisible = 3609 ' PivotBarVisibleEnum.exPivotBarAllowResizeColumns Or PivotBarVisibleEnum.exPivotBarAllowUndoRedo Or PivotBarVisibleEnum.exPivotBarAutoUpdate Or PivotBarVisibleEnum.exPivotBarShowTotals Or PivotBarVisibleEnum.exPivotBarAutoFit Or PivotBarVisibleEnum.exPivotBarVisible
		.Import "C:\Program Files\Exontrol\ExPivot\Sample\data.txt"
		With .DataColumns.item(5)
			.Alignment = 2
			.HeaderAlignment = 2
		End With
		.PivotRows = "0"
		.PivotColumns = "sum(5)[content=numeric]"
		.Refresh 
	End With
End Function
</SCRIPT>
</BODY>

82
Is there any way for the user to change the alignment at runtime

<BODY onload="Init()">
<SCRIPT LANGUAGE="VBScript">
Function Pivot1_RClick()
	With Pivot1
		alert( "The column gets aligned to the center" )
		With .DataColumns.item(5)
			.Alignment = 1
			.HeaderAlignment = 1
		End With
		.Refresh 
	End With
End Function
</SCRIPT>

<OBJECT CLASSID="clsid:5C9DF3D3-81B1-42C4-BED6-658F17748686" id="Pivot1"></OBJECT>

<SCRIPT LANGUAGE="VBScript">
Function Init()
	With Pivot1
		.Import "C:\Program Files\Exontrol\ExPivot\Sample\data.txt"
		With .DataColumns.item(5)
			.Alignment = 2
			.HeaderAlignment = 2
		End With
		.PivotRows = "0"
		.PivotColumns = "sum(5)[content=numeric]"
		.Refresh 
	End With
End Function
</SCRIPT>
</BODY>

81
How can I align a column to the right

<BODY onload="Init()">
<OBJECT CLASSID="clsid:5C9DF3D3-81B1-42C4-BED6-658F17748686" id="Pivot1"></OBJECT>

<SCRIPT LANGUAGE="VBScript">
Function Init()
	With Pivot1
		.Import "C:\Program Files\Exontrol\ExPivot\Sample\data.txt"
		With .DataColumns.item(5)
			.Alignment = 2
			.HeaderAlignment = 2
		End With
		.PivotRows = "0"
		.PivotColumns = "sum(5)[content=numeric]"
		.Refresh 
	End With
End Function
</SCRIPT>
</BODY>

80
How can I display the control's content on an single A3 paper size, when using PDF format
<BODY onload="Init()">
<OBJECT CLASSID="clsid:5C9DF3D3-81B1-42C4-BED6-658F17748686" id="Pivot1"></OBJECT>

<SCRIPT LANGUAGE="VBScript">
Function Init()
	With Pivot1
		.BeginUpdate 
		.VisualAppearance.Add 1,"c:\exontrol\images\normal.ebn"
		.Import "C:\Program Files\Exontrol\ExPivot\Sample\data.txt"
		.FormatConditionalAppearances.item("positive").BackColor = &H100ff00
		.FormatConditionalAppearances.item("negative").BackColor = &H10000ff
		.PivotRows = "0"
		.PivotColumns = "sum(5)[positive,negative]/12"
		.ExpandAll 
		var_CopyTo = .CopyTo("C:\Temp\Preview.pdf|11.69 in x 16.53 in||single")
		alert( "Look for C:\Temp\Preview.pd file." )
		.EndUpdate 
	End With
End Function
</SCRIPT>
</BODY>

79
How can I display the control's content on an A3 paper size, when using PDF format
<BODY onload="Init()">
<OBJECT CLASSID="clsid:5C9DF3D3-81B1-42C4-BED6-658F17748686" id="Pivot1"></OBJECT>

<SCRIPT LANGUAGE="VBScript">
Function Init()
	With Pivot1
		.BeginUpdate 
		.VisualAppearance.Add 1,"c:\exontrol\images\normal.ebn"
		.Import "C:\Program Files\Exontrol\ExPivot\Sample\data.txt"
		.FormatConditionalAppearances.item("positive").BackColor = &H100ff00
		.FormatConditionalAppearances.item("negative").BackColor = &H10000ff
		.PivotRows = "0"
		.PivotColumns = "sum(5)[positive,negative]/12"
		.ExpandAll 
		var_CopyTo = .CopyTo("C:\Temp\Preview.pdf|11.69 in x 16.53 in")
		alert( "Look for C:\Temp\Preview.pd file." )
		.EndUpdate 
	End With
End Function
</SCRIPT>
</BODY>

78
How can I export the control's content to a PDF document (method 1)
<BODY onload="Init()">
<OBJECT CLASSID="clsid:5C9DF3D3-81B1-42C4-BED6-658F17748686" id="Pivot1"></OBJECT>

<SCRIPT LANGUAGE="VBScript">
Function Init()
	With Pivot1
		.BeginUpdate 
		.VisualAppearance.Add 1,"c:\exontrol\images\normal.ebn"
		.Import "C:\Program Files\Exontrol\ExPivot\Sample\data.txt"
		.FormatConditionalAppearances.item("positive").BackColor = &H100ff00
		.FormatConditionalAppearances.item("negative").BackColor = &H10000ff
		.PivotRows = "0"
		.PivotColumns = "sum(5)[positive,negative]/12"
		.ExpandAll 
		.EndUpdate 
		With CreateObject("Exontrol.Print")
			.PrintExt = Pivot1.Object
			.CopyTo "c:/temp/xtest.pdf"
		End With
		alert( "Look for C:\Temp\xtest.pdf file." )
		.EndUpdate 
	End With
End Function
</SCRIPT>
</BODY>

77
How can I export the control's content to a PDF document (method 2)
<BODY onload="Init()">
<OBJECT CLASSID="clsid:5C9DF3D3-81B1-42C4-BED6-658F17748686" id="Pivot1"></OBJECT>

<SCRIPT LANGUAGE="VBScript">
Function Init()
	With Pivot1
		.BeginUpdate 
		.VisualAppearance.Add 1,"c:\exontrol\images\normal.ebn"
		.Import "C:\Program Files\Exontrol\ExPivot\Sample\data.txt"
		.FormatConditionalAppearances.item("positive").BackColor = &H100ff00
		.FormatConditionalAppearances.item("negative").BackColor = &H10000ff
		.PivotRows = "0"
		.PivotColumns = "sum(5)[positive,negative]/12"
		.ExpandAll 
		var_CopyTo = .CopyTo("c:/temp/xtest.pdf")
		alert( "Look for C:\Temp\xtest.pdf file." )
		.EndUpdate 
	End With
End Function
</SCRIPT>
</BODY>

76
Does / could the control have a read-only mode by where I could load the data and layout and just use the control to display it and allow the user to scroll around it / print it but not change it
<BODY onload="Init()">
<OBJECT CLASSID="clsid:5C9DF3D3-81B1-42C4-BED6-658F17748686" id="Pivot1"></OBJECT>

<SCRIPT LANGUAGE="VBScript">
Function Init()
	With Pivot1
		.Import "C:\Program Files\Exontrol\ExPivot\Sample\data.txt"
		.PivotRows = "0"
		.PivotColumns = "sum(5)[content=numeric]"
		.DisplayFilterList = 2
		.PivotBarVisible = 268435977 ' PivotBarVisibleEnum.exPivotBarReadOnly Or PivotBarVisibleEnum.exPivotBarAutoUpdate Or PivotBarVisibleEnum.exPivotBarAutoFit Or PivotBarVisibleEnum.exPivotBarVisible
		.Refresh 
	End With
End Function
</SCRIPT>
</BODY>

75
Is it possible to edit the conditional-expression at runtime

<BODY onload="Init()">
<OBJECT CLASSID="clsid:5C9DF3D3-81B1-42C4-BED6-658F17748686" id="Pivot1"></OBJECT>

<SCRIPT LANGUAGE="VBScript">
Function Init()
	With Pivot1
		.BeginUpdate 
		.Import "C:\Program Files\Exontrol\ExPivot\Sample\data.txt"
		With .FormatConditionalAppearances.Add("custom","custom","")
			.Bold = True
			.FontSize = 12
			.Expression = "value > 2000"
			.ContextEditExpression = True
		End With
		.PivotRows = "0"
		.PivotColumns = "sum(5)[custom]/12"
		.EndUpdate 
	End With
End Function
</SCRIPT>
</BODY>

74
How can I highlight values using EBN colors

<BODY onload="Init()">
<OBJECT CLASSID="clsid:5C9DF3D3-81B1-42C4-BED6-658F17748686" id="Pivot1"></OBJECT>

<SCRIPT LANGUAGE="VBScript">
Function Init()
	With Pivot1
		.BeginUpdate 
		.VisualAppearance.Add 1,"c:\exontrol\images\normal.ebn"
		.Import "C:\Program Files\Exontrol\ExPivot\Sample\data.txt"
		.FormatConditionalAppearances.item("positive").BackColor = &H100ff00
		.FormatConditionalAppearances.item("negative").BackColor = &H10000ff
		.PivotRows = "0"
		.PivotColumns = "sum(5)[positive,negative]/12"
		.EndUpdate 
	End With
End Function
</SCRIPT>
</BODY>

73
How do I mark not-empty values in the chart

<BODY onload="Init()">
<OBJECT CLASSID="clsid:5C9DF3D3-81B1-42C4-BED6-658F17748686" id="Pivot1"></OBJECT>

<SCRIPT LANGUAGE="VBScript">
Function Init()
	With Pivot1
		.BeginUpdate 
		.Import "C:\Program Files\Exontrol\ExPivot\Sample\data.txt"
		.PivotRows = "0"
		With .FormatConditionalAppearances.Add("nempty","not empty","")
			.Expression = "len(value) != 0"
			.BackColor = RGB(240,240,240)
		End With
		.PivotColumns = "sum(5)[nempty]/12"
		.EndUpdate 
	End With
End Function
</SCRIPT>
</BODY>

72
How can I highlight negative and positive values in the same chart

<BODY onload="Init()">
<OBJECT CLASSID="clsid:5C9DF3D3-81B1-42C4-BED6-658F17748686" id="Pivot1"></OBJECT>

<SCRIPT LANGUAGE="VBScript">
Function Init()
	With Pivot1
		.BeginUpdate 
		.Import "C:\Program Files\Exontrol\ExPivot\Sample\data.txt"
		.PivotRows = "0"
		.PivotColumns = "sum(5)[negative,positive]/12"
		.EndUpdate 
	End With
End Function
</SCRIPT>
</BODY>

71
How can I highlight values that starts with a letter

<BODY onload="Init()">
<OBJECT CLASSID="clsid:5C9DF3D3-81B1-42C4-BED6-658F17748686" id="Pivot1"></OBJECT>

<SCRIPT LANGUAGE="VBScript">
Function Init()
	With Pivot1
		.BeginUpdate 
		With .FormatConditionalAppearances.Add("f","starts with f","lower(value) startwith `f`")
			.Expression = "lower(value) startwith `f`"
			.Shadow = RGB(1,0,0)
			.ShadowOffset = 0
		End With
		.Import "C:\Program Files\Exontrol\ExPivot\Sample\data.txt"
		.PivotRows = "0[f]"
		.EndUpdate 
	End With
End Function
</SCRIPT>
</BODY>

70
How can I mark values greater than a value, 100 for instance

<BODY onload="Init()">
<OBJECT CLASSID="clsid:5C9DF3D3-81B1-42C4-BED6-658F17748686" id="Pivot1"></OBJECT>

<SCRIPT LANGUAGE="VBScript">
Function Init()
	With Pivot1
		.BeginUpdate 
		With .FormatConditionalAppearances.Add("greater100",">100","value > 100")
			.Expression = "( dbl(value) != 0 ) ? (value > 100) : 0"
			.ForeColor = RGB(255,0,0)
		End With
		.Import "C:\Program Files\Exontrol\ExPivot\Sample\data.txt"
		.PivotRows = "0"
		.PivotColumns = "sum(5)[greater100,content=numeric]"
		.EndUpdate 
	End With
End Function
</SCRIPT>
</BODY>

69
How can I remove the Conditional context-menu

<BODY onload="Init()">
<OBJECT CLASSID="clsid:5C9DF3D3-81B1-42C4-BED6-658F17748686" id="Pivot1"></OBJECT>

<SCRIPT LANGUAGE="VBScript">
Function Init()
	With Pivot1
		.BeginUpdate 
		.PivotBarVisible = 4059 ' PivotBarVisibleEnum.exPivotBarAllowResizeColumns Or PivotBarVisibleEnum.exPivotBarAllowUndoRedo Or PivotBarVisibleEnum.exPivotBarAutoUpdate Or PivotBarVisibleEnum.exPivotBarAllowFormatContent Or PivotBarVisibleEnum.exPivotBarAllowFormatAppearance Or PivotBarVisibleEnum.exPivotBarAllowValues Or PivotBarVisibleEnum.exPivotBarShowTotals Or PivotBarVisibleEnum.exPivotBarAutoFit Or PivotBarVisibleEnum.exPivotBarSizable Or PivotBarVisibleEnum.exPivotBarVisible
		.Import "C:\Program Files\Exontrol\ExPivot\Sample\data.txt"
		.PivotRows = "0"
		.PivotColumns = "sum(5)[content=numeric]"
		.EndUpdate 
	End With
End Function
</SCRIPT>
</BODY>

68
How do change the way the negative/positive numbers show when using conditional-format

<BODY onload="Init()">
<OBJECT CLASSID="clsid:5C9DF3D3-81B1-42C4-BED6-658F17748686" id="Pivot1"></OBJECT>

<SCRIPT LANGUAGE="VBScript">
Function Init()
	With Pivot1
		.BeginUpdate 
		.Import "C:\Program Files\Exontrol\ExPivot\Sample\data.txt"
		With .FormatConditionalAppearances.item("negative")
			.BackColor = RGB(0,0,0)
			.ForeColor = RGB(128,128,128)
			.FontSize = 8
		End With
		With .FormatConditionalAppearances.item("positive")
			.BackColor = RGB(0,0,0)
			.ForeColor = RGB(1,0,0)
			.FontSize = 11
		End With
		.PivotRows = "0"
		.PivotColumns = "sum(5)[negative,positive,content=numeric]"
		.EndUpdate 
	End With
End Function
</SCRIPT>
</BODY>

67
How do I highlight the negative values with white color or black

<BODY onload="Init()">
<OBJECT CLASSID="clsid:5C9DF3D3-81B1-42C4-BED6-658F17748686" id="Pivot1"></OBJECT>

<SCRIPT LANGUAGE="VBScript">
Function Init()
	With Pivot1
		.BeginUpdate 
		.Import "C:\Program Files\Exontrol\ExPivot\Sample\data.txt"
		With .FormatConditionalAppearances.item("negative")
			.BackColor = RGB(1,0,0)
			.ForeColor = RGB(255,255,255)
		End With
		.PivotRows = "0"
		.PivotColumns = "sum(5)[negative,content=numeric]"
		.EndUpdate 
	End With
End Function
</SCRIPT>
</BODY>

66
Does your control support conditional-format, so I can highlight certain values

<BODY onload="Init()">
<OBJECT CLASSID="clsid:5C9DF3D3-81B1-42C4-BED6-658F17748686" id="Pivot1"></OBJECT>

<SCRIPT LANGUAGE="VBScript">
Function Init()
	With Pivot1
		.BeginUpdate 
		.Import "C:\Program Files\Exontrol\ExPivot\Sample\data.txt"
		.PivotRows = "0"
		.PivotColumns = "sum(5)[negative,content=numeric]"
		.EndUpdate 
	End With
End Function
</SCRIPT>
</BODY>

65
How do I add a computed column/field, like VAT for instance (method 2)

<BODY onload="Init()">
<OBJECT CLASSID="clsid:5C9DF3D3-81B1-42C4-BED6-658F17748686" id="Pivot1"></OBJECT>

<SCRIPT LANGUAGE="VBScript">
Function Init()
	With Pivot1
		.BeginUpdate 
		With .Aggregates
			.Add("vat19","sum","VAT 19%","VAT 19%").FormatValue = "value * 0.19"
			.Add("vat24","sum","VAT 24%","VAT 24%").FormatValue = "value * 0.24"
		End With
		.Import "C:\Program Files\Exontrol\ExPivot\Sample\data.txt"
		.PivotRows = "0"
		.PivotColumns = "sum(5)[content=numeric],vat19(5)[bold,content=numeric],vat24(5)[bold,content=numeric]"
		.EndUpdate 
	End With
End Function
</SCRIPT>
</BODY>

64
How do I add a computed column/field, like VAT for instance (method 1)

<BODY onload="Init()">
<OBJECT CLASSID="clsid:5C9DF3D3-81B1-42C4-BED6-658F17748686" id="Pivot1"></OBJECT>

<SCRIPT LANGUAGE="VBScript">
Function Init()
	With Pivot1
		.BeginUpdate 
		With .FormatContents.Add("vat19","VAT 19%")
			.Expression = "len(value) ? ((value * 1.19) format '') : ''"
		End With
		With .FormatContents.Add("vat24","VAT 24%")
			.Expression = "len(value) ? ((value * 1.24) format '') : ''"
		End With
		.Import "C:\Program Files\Exontrol\ExPivot\Sample\data.txt"
		.PivotRows = "0"
		.PivotColumns = "sum(5)[content=numeric],sum(5)[bold,content=vat19],sum(5)[bold,content=vat24]"
		.EndUpdate 
	End With
End Function
</SCRIPT>
</BODY>

63
How can I hide some values for instance negative values

<BODY onload="Init()">
<OBJECT CLASSID="clsid:5C9DF3D3-81B1-42C4-BED6-658F17748686" id="Pivot1"></OBJECT>

<SCRIPT LANGUAGE="VBScript">
Function Init()
	With Pivot1
		.BeginUpdate 
		With .FormatContents.Add("hiden","hide negative")
			.Expression = "value < 0 ? `` : value"
		End With
		With .FormatContents.Add("hidep","hide positive")
			.Expression = "value > 0 ? `` : value"
		End With
		.Import "C:\Program Files\Exontrol\ExPivot\Sample\data.txt"
		.PivotRows = "0"
		.PivotColumns = "sum(5)[bold],sum(5)[content=hiden],sum(5)[content=hidep]"
		.EndUpdate 
	End With
End Function
</SCRIPT>
</BODY>

62
How can I decode the Layout property

<BODY onload="Init()">
<OBJECT CLASSID="clsid:5C9DF3D3-81B1-42C4-BED6-658F17748686" id="Pivot1"></OBJECT>

<SCRIPT LANGUAGE="VBScript">
Function Init()
	With Pivot1
		.BeginUpdate 
		.Import "C:\Program Files\Exontrol\ExPivot\Sample\data.txt"
		.PivotRows = "0"
		.PivotColumns = "sum(5)/12"
		.Layout = "Columns =1;C0.Width = 64"
		With CreateObject("Exontrol.Print")
			alert( .Decode64TextW(Pivot1.Layout) )
		End With
		.EndUpdate 
	End With
End Function
</SCRIPT>
</BODY>

61
How can I specify the sorting type, so the column gets sorted as numeric for instance

<BODY onload="Init()">
<OBJECT CLASSID="clsid:5C9DF3D3-81B1-42C4-BED6-658F17748686" id="Pivot1"></OBJECT>

<SCRIPT LANGUAGE="VBScript">
Function Init()
	With Pivot1
		.Import "1,1#11,11#101,101","eor='#' eof=',' hdr=0"
		With .DataColumns.item(0)
			.Caption = "Numeric"
			.SortType = 1
		End With
		.DataColumns.item(1).Caption = "String (default)"
		.PivotRows = "0"
		.Refresh 
	End With
End Function
</SCRIPT>
</BODY>

60
How can I disable the control's context menu
<BODY onload="Init()">
<OBJECT CLASSID="clsid:5C9DF3D3-81B1-42C4-BED6-658F17748686" id="Pivot1"></OBJECT>

<SCRIPT LANGUAGE="VBScript">
Function Init()
	With Pivot1
		.Import "C:\Program Files\Exontrol\ExPivot\Sample\data.txt"
		.PivotRows = "0"
		.PivotBarVisible = 3675 ' PivotBarVisibleEnum.exPivotBarAllowResizeColumns Or PivotBarVisibleEnum.exPivotBarAllowUndoRedo Or PivotBarVisibleEnum.exPivotBarAutoUpdate Or PivotBarVisibleEnum.exPivotBarAllowValues Or PivotBarVisibleEnum.exPivotBarShowTotals Or PivotBarVisibleEnum.exPivotBarAutoFit Or PivotBarVisibleEnum.exPivotBarSizable Or PivotBarVisibleEnum.exPivotBarVisible
	End With
End Function
</SCRIPT>
</BODY>

59
How do I get the captions of the columns
<BODY onload="Init()">
<OBJECT CLASSID="clsid:5C9DF3D3-81B1-42C4-BED6-658F17748686" id="Pivot1"></OBJECT>

<SCRIPT LANGUAGE="VBScript">
Function Init()
	With Pivot1
		.Import "C:\Program Files\Exontrol\ExPivot\Sample\data.txt"
		alert( .DataColumns.Count )
		alert( .DataColumns.item(0).PivotCaption )
		alert( .DataColumns.item(0).Caption )
		alert( .DataColumns.item(1).PivotCaption )
		alert( .DataColumns.item(1).Caption )
	End With
End Function
</SCRIPT>
</BODY>

58
How can I specify the default-format for a specified column, so it always shows as numeric for instance
<BODY onload="Init()">
<OBJECT CLASSID="clsid:5C9DF3D3-81B1-42C4-BED6-658F17748686" id="Pivot1"></OBJECT>

<SCRIPT LANGUAGE="VBScript">
Function Init()
	With Pivot1
		.Import "C:\Program Files\Exontrol\ExPivot\Sample\data.txt"
		With .DataColumns.item("Freight")
			.DefaultFormatContent = "numeric"
			.DefaultFormatAppearances = "bold"
			.SortOrder = 1
			.SortType = 1
		End With
		.PivotTotalDefaultFormatContent = "currency"
		.PivotTotalDefaultFormatAppearances = "strikeout,bold"
		.PivotRows = "0"
		.PivotColumns = "sum(5)[bold,content=numeric]"
		.PivotTotals = "sum[strikeout,bold,content=currency]"
		.PivotColumnsFloatBarVisible = True
		.Refresh 
	End With
End Function
</SCRIPT>
</BODY>

57
How can I display the percentage column

<BODY onload="Init()">
<OBJECT CLASSID="clsid:5C9DF3D3-81B1-42C4-BED6-658F17748686" id="Pivot1"></OBJECT>

<SCRIPT LANGUAGE="VBScript">
Function Init()
	With Pivot1
		.FormatContents.Add "percent","value + `%`"
		.Import "C:\Program Files\Exontrol\ExPivot\Sample\data.txt"
		.PivotRows = "5[content=percent]"
		.Refresh 
	End With
End Function
</SCRIPT>
</BODY>

56
How do I change the name for months in the drop-down filter window (localization)

<BODY onload="Init()">
<OBJECT CLASSID="clsid:5C9DF3D3-81B1-42C4-BED6-658F17748686" id="Pivot1"></OBJECT>

<SCRIPT LANGUAGE="VBScript">
Function Init()
	With Pivot1
		alert( .Description(17) )
		.Description(17) = "Ianuarie Februarie Martie Aprilie Mai Iunie Iulie August Septembrie Octombrie Noiembrie Decembrie"
		.Description(0) = "(Toate)"
		.Description(1) = "(Gol)"
		.Description(2) = "(Plin)"
		.Description(3) = "Filtreaza:"
		.Description(16) = "Azi"
		.Description(18) = "D L Ma Mi J V S"
		.Description(25) = "Exclud"
		.Description(26) = "Coloane"
		.Description(11) = "si"
		.Description(12) = "Data:"
		.Description(15) = "Data"
		.Description(13) = "la"
		.Description(24) = "nu"
		.Description(23) = "sau"
		.Import "C:\Program Files\Exontrol\ExPivot\Sample\data.txt"
		.DataColumns.item("OrderDate").SortType = 2
		.PivotRows = "9"
		.Refresh 
	End With
End Function
</SCRIPT>
</BODY>

55
How can I scale and print programmatically the pivot table, to fit on one axis eg FitPageHeight but infinite width etc
<BODY onload="Init()">
<OBJECT CLASSID="clsid:5C9DF3D3-81B1-42C4-BED6-658F17748686" id="Pivot1"></OBJECT>

<SCRIPT LANGUAGE="VBScript">
Function Init()
	With Pivot1
		.Import "C:\Program Files\Exontrol\ExPivot\Sample\data.txt"
		.PivotRows = "6"
		.PivotColumns = "sum(5)/3"
		.Refresh 
		With CreateObject("Exontrol.Print")
			.Options = "FitToPage = x 5"
			.PrintExts = Pivot1
			.Preview 
		End With
	End With
End Function
</SCRIPT>
</BODY>

54
How can I scale and print programmatically the pivot table, to fit on one axis eg FitPageWidth but infinite height etc
<BODY onload="Init()">
<OBJECT CLASSID="clsid:5C9DF3D3-81B1-42C4-BED6-658F17748686" id="Pivot1"></OBJECT>

<SCRIPT LANGUAGE="VBScript">
Function Init()
	With Pivot1
		.Import "C:\Program Files\Exontrol\ExPivot\Sample\data.txt"
		.PivotRows = "6"
		.PivotColumns = "sum(5)/3"
		.Refresh 
		With CreateObject("Exontrol.Print")
			.Options = "FitToPage = 5 x"
			.PrintExts = Pivot1
			.Preview 
		End With
	End With
End Function
</SCRIPT>
</BODY>

53
How can I get the column from the cursor
<BODY onload="Init()">
<SCRIPT LANGUAGE="VBScript">
Function Pivot1_MouseMove(Button,Shift,X,Y)
	With Pivot1
		alert( .ColumnFromPoint(-1,-1) )
	End With
End Function
</SCRIPT>

<OBJECT CLASSID="clsid:5C9DF3D3-81B1-42C4-BED6-658F17748686" id="Pivot1"></OBJECT>

<SCRIPT LANGUAGE="VBScript">
Function Init()
	With Pivot1
		.Import "C:\Program Files\Exontrol\ExPivot\Sample\data.txt"
		.Refresh 
	End With
End Function
</SCRIPT>
</BODY>

52
How can I get the value from the cursor
<BODY onload="Init()">
<SCRIPT LANGUAGE="VBScript">
Function Pivot1_MouseMove(Button,Shift,X,Y)
	With Pivot1
		alert( .ValueFromPoint(-1,-1) )
	End With
End Function
</SCRIPT>

<OBJECT CLASSID="clsid:5C9DF3D3-81B1-42C4-BED6-658F17748686" id="Pivot1"></OBJECT>

<SCRIPT LANGUAGE="VBScript">
Function Init()
	With Pivot1
		.Import "C:\Program Files\Exontrol\ExPivot\Sample\data.txt"
		.Refresh 
	End With
End Function
</SCRIPT>
</BODY>

51
How can I specify a column to display HTML format

<BODY onload="Init()">
<OBJECT CLASSID="clsid:5C9DF3D3-81B1-42C4-BED6-658F17748686" id="Pivot1"></OBJECT>

<SCRIPT LANGUAGE="VBScript">
Function Init()
	With Pivot1
		.Import "Bold <b>1,Bold <b>2#Bold <b>3,Bold <b>4#Bold <b>5,Bold <b>6","eor='#' eof=',' hdr=0"
		.DataColumns.item(0).HTML = True
		.DataColumns.item(1).HTML = True
		.PivotRows = "0"
		.Refresh 
	End With
End Function
</SCRIPT>
</BODY>

50
Does your control supports scrolling by touching the screen

<BODY onload="Init()">
<OBJECT CLASSID="clsid:5C9DF3D3-81B1-42C4-BED6-658F17748686" id="Pivot1"></OBJECT>

<SCRIPT LANGUAGE="VBScript">
Function Init()
	With Pivot1
		Set rs = CreateObject("ADOR.Recordset")
		With rs
			.Open "Data","Provider=Microsoft.ACE.OLEDB.12.0;Data Source=C:\Program Files\Exontrol\ExPivot\Sample\Access\sample.accdb",3,3
		End With
		.DataSource = rs
		.AutoDrag = 4112 ' AutoDragEnum.exAutoDragScrollOnShortTouch Or AutoDragEnum.exAutoDragScroll
	End With
End Function
</SCRIPT>
</BODY>

49
How can I specify programatically the width of the pivot column ( first column )

<BODY onload="Init()">
<OBJECT CLASSID="clsid:5C9DF3D3-81B1-42C4-BED6-658F17748686" id="Pivot1"></OBJECT>

<SCRIPT LANGUAGE="VBScript">
Function Init()
	With Pivot1
		.BeginUpdate 
		.Import "C:\Program Files\Exontrol\ExPivot\Sample\data.txt"
		.PivotRows = "0"
		.PivotColumns = "sum(5)/12"
		.Layout = "Columns =1;C0.Width = 64"
		.EndUpdate 
	End With
End Function
</SCRIPT>
</BODY>

48
How can I show the total of each row, when columns are shown as expanded

<BODY onload="Init()">
<OBJECT CLASSID="clsid:5C9DF3D3-81B1-42C4-BED6-658F17748686" id="Pivot1"></OBJECT>

<SCRIPT LANGUAGE="VBScript">
Function Init()
	With Pivot1
		.BeginUpdate 
		.IncludeExpandColumn = 1
		.Import "C:\Program Files\Exontrol\ExPivot\Sample\data.txt"
		.PivotRows = "0"
		.PivotColumns = "sum(5)/12"
		.EndUpdate 
	End With
End Function
</SCRIPT>
</BODY>

47
How can I prevent grouping by a specified column
<BODY onload="Init()">
<OBJECT CLASSID="clsid:5C9DF3D3-81B1-42C4-BED6-658F17748686" id="Pivot1"></OBJECT>

<SCRIPT LANGUAGE="VBScript">
Function Init()
	With Pivot1
		.Import "C:\Program Files\Exontrol\ExPivot\Sample\data.txt"
		.DataColumns.item("Freight").AllowGroupBy = 0
	End With
End Function
</SCRIPT>
</BODY>

46
How can I sort alphabetically the columns to be displayed in the context menu/floating panel

<BODY onload="Init()">
<OBJECT CLASSID="clsid:5C9DF3D3-81B1-42C4-BED6-658F17748686" id="Pivot1"></OBJECT>

<SCRIPT LANGUAGE="VBScript">
Function Init()
	With Pivot1
		.Import "C:\Program Files\Exontrol\ExPivot\Sample\data.txt"
		.PivotBarVisible = 69595 ' PivotBarVisibleEnum.exPivotBarContextSortAscending Or PivotBarVisibleEnum.exPivotBarAllowResizeColumns Or PivotBarVisibleEnum.exPivotBarAllowUndoRedo Or PivotBarVisibleEnum.exPivotBarAutoUpdate Or PivotBarVisibleEnum.exPivotBarAllowFormatContent Or PivotBarVisibleEnum.exPivotBarAllowFormatAppearance Or PivotBarVisibleEnum.exPivotBarAllowValues Or PivotBarVisibleEnum.exPivotBarShowTotals Or PivotBarVisibleEnum.exPivotBarAutoFit Or PivotBarVisibleEnum.exPivotBarSizable Or PivotBarVisibleEnum.exPivotBarVisible
		.PivotColumnsSortOrder = 1
		.PivotColumnsFloatBarVisible = True
	End With
End Function
</SCRIPT>
</BODY>

45
How can I prevent dropping data to the control
<BODY onload="Init()">
<OBJECT CLASSID="clsid:5C9DF3D3-81B1-42C4-BED6-658F17748686" id="Pivot1"></OBJECT>

<SCRIPT LANGUAGE="VBScript">
Function Init()
	With Pivot1
		.AllowDrop = False
	End With
End Function
</SCRIPT>
</BODY>

44
Is it possible to allow incremental filtering on drop down filter window too, as I can on the control menus

<BODY onload="Init()">
<OBJECT CLASSID="clsid:5C9DF3D3-81B1-42C4-BED6-658F17748686" id="Pivot1"></OBJECT>

<SCRIPT LANGUAGE="VBScript">
Function Init()
	With Pivot1
		var_DisplayFilterList = .DisplayFilterList ' .DisplayFilterList
		.Import "C:\Program Files\Exontrol\ExPivot\Sample\data.txt"
		.PivotRows = "0"
		.DisplayFilterList = 42272 ' FilterListEnum.exHideFilterPattern Or FilterListEnum.exFilterListDefault
	End With
End Function
</SCRIPT>
</BODY>

43
How can I prevent showing the Filter For field in the drop down filter window

<BODY onload="Init()">
<OBJECT CLASSID="clsid:5C9DF3D3-81B1-42C4-BED6-658F17748686" id="Pivot1"></OBJECT>

<SCRIPT LANGUAGE="VBScript">
Function Init()
	With Pivot1
		var_DisplayFilterList = .DisplayFilterList ' .DisplayFilterList
		.Import "C:\Program Files\Exontrol\ExPivot\Sample\data.txt"
		.PivotRows = "0"
		.DisplayFilterList = 42272 ' FilterListEnum.exHideFilterPattern Or FilterListEnum.exFilterListDefault
	End With
End Function
</SCRIPT>
</BODY>

42
How can I display the numeric columns only when selecting a new aggregate, like SUM

<BODY onload="Init()">
<OBJECT CLASSID="clsid:5C9DF3D3-81B1-42C4-BED6-658F17748686" id="Pivot1"></OBJECT>

<SCRIPT LANGUAGE="VBScript">
Function Init()
	With Pivot1
		.Import "C:\Program Files\Exontrol\ExPivot\Sample\data.txt"
		.PivotRows = "0[bold]"
		.PivotColumns = "sum(5)/12,count(5)/12"
		.DataColumns.item("Freight").SortType = 1
	End With
End Function
</SCRIPT>
</BODY>

41
How can I add a value column

<BODY onload="Init()">
<OBJECT CLASSID="clsid:5C9DF3D3-81B1-42C4-BED6-658F17748686" id="Pivot1"></OBJECT>

<SCRIPT LANGUAGE="VBScript">
Function Init()
	With Pivot1
		.Import "C:\Program Files\Exontrol\ExPivot\Sample\data.txt"
		.PivotRows = "0"
		.PivotColumns = "sum(5)/12"
	End With
End Function
</SCRIPT>
</BODY>

40
I would like to always have the subtotals in the same row of the "father row". Could that be done

<BODY onload="Init()">
<OBJECT CLASSID="clsid:5C9DF3D3-81B1-42C4-BED6-658F17748686" id="Pivot1"></OBJECT>

<SCRIPT LANGUAGE="VBScript">
Function Init()
	With Pivot1
		.Import "C:\Program Files\Exontrol\ExPivot\Sample\data.txt"
		.PivotRows = "0[bold],2"
		.PivotColumns = "sum(5)/12,count(5)/12"
		.ShowViewCompact = 35 ' ShowViewCompactEnum.exViewCompactAggregates Or ShowViewCompactEnum.exViewCompact
		.PivotTotals = "/sum,sum(0)"
	End With
End Function
</SCRIPT>
</BODY>

39
Is there any way, when I change the filter of the column, it broadcast the filter to the other pivot columns that were duplicated

<BODY onload="Init()">
<OBJECT CLASSID="clsid:5C9DF3D3-81B1-42C4-BED6-658F17748686" id="Pivot1"></OBJECT>

<SCRIPT LANGUAGE="VBScript">
Function Init()
	With Pivot1
		.Import "C:\Program Files\Exontrol\ExPivot\Sample\data.txt"
		.PivotRows = "0,2"
		.ShowBranchRows = 2
		.PivotColumns = "sum(5)/12[filter='gBpNxjNh1MhlBoKNhpOZ0hJVNxpOhlMggKBhMZrMJnMoAgI='],count(5)/12[filter='gBpNxjNh1MhlBoKNhpOZ0hJVNxpOhlMggKBhMZ" & _
	"rMJnMoAgI=']"
		.ShowViewCompact = 19 ' ShowViewCompactEnum.exViewCompactKeepSettings Or ShowViewCompactEnum.exViewCompact
	End With
End Function
</SCRIPT>
</BODY>

38
How can I summarize more fields in the same cell

<BODY onload="Init()">
<OBJECT CLASSID="clsid:5C9DF3D3-81B1-42C4-BED6-658F17748686" id="Pivot1"></OBJECT>

<SCRIPT LANGUAGE="VBScript">
Function Init()
	With Pivot1
		.Import "C:\Program Files\Exontrol\ExPivot\Sample\data.txt"
		.PivotRows = "0,2"
		.ShowBranchRows = 2
		.PivotColumns = "sum(5)/12,count(5)/12"
		.ShowViewCompact = 3
	End With
End Function
</SCRIPT>
</BODY>

37
How do I programmatically group by rows, in a compact way, no hierarchy lines

<BODY onload="Init()">
<OBJECT CLASSID="clsid:5C9DF3D3-81B1-42C4-BED6-658F17748686" id="Pivot1"></OBJECT>

<SCRIPT LANGUAGE="VBScript">
Function Init()
	With Pivot1
		.Import "C:\Program Files\Exontrol\ExPivot\Sample\data.txt"
		.PivotRows = "0,2"
		.ShowBranchRows = 2
	End With
End Function
</SCRIPT>
</BODY>

36
How do I programmatically group by rows

<BODY onload="Init()">
<OBJECT CLASSID="clsid:5C9DF3D3-81B1-42C4-BED6-658F17748686" id="Pivot1"></OBJECT>

<SCRIPT LANGUAGE="VBScript">
Function Init()
	With Pivot1
		.Import "C:\Program Files\Exontrol\ExPivot\Sample\data.txt"
		.PivotRows = "0,1,2"
		.LinesAtRoot = -1
		.HasLines = 1
	End With
End Function
</SCRIPT>
</BODY>

35
How do I programmatically group by columns

<BODY onload="Init()">
<OBJECT CLASSID="clsid:5C9DF3D3-81B1-42C4-BED6-658F17748686" id="Pivot1"></OBJECT>

<SCRIPT LANGUAGE="VBScript">
Function Init()
	With Pivot1
		.Import "C:\Program Files\Exontrol\ExPivot\Sample\data.txt"
		.PivotRows = "0"
		.PivotColumns = "sum(5)/12;6"
	End With
End Function
</SCRIPT>
</BODY>

34
How can I hide the add new button on the pivot bar

<BODY onload="Init()">
<OBJECT CLASSID="clsid:5C9DF3D3-81B1-42C4-BED6-658F17748686" id="Pivot1"></OBJECT>

<SCRIPT LANGUAGE="VBScript">
Function Init()
	With Pivot1
		.Import "C:\Program Files\Exontrol\ExPivot\Sample\data.txt"
		.PivotBarVisible = 8155 ' PivotBarVisibleEnum.exPivotBarHideAddNew Or PivotBarVisibleEnum.exPivotBarAllowResizeColumns Or PivotBarVisibleEnum.exPivotBarAllowUndoRedo Or PivotBarVisibleEnum.exPivotBarAutoUpdate Or PivotBarVisibleEnum.exPivotBarAllowFormatContent Or PivotBarVisibleEnum.exPivotBarAllowFormatAppearance Or PivotBarVisibleEnum.exPivotBarAllowValues Or PivotBarVisibleEnum.exPivotBarShowTotals Or PivotBarVisibleEnum.exPivotBarAutoFit Or PivotBarVisibleEnum.exPivotBarSizable Or PivotBarVisibleEnum.exPivotBarVisible
	End With
End Function
</SCRIPT>
</BODY>

33
Is it possible to show the data that generated the result, when double clicking the row

<BODY onload="Init()">
<OBJECT CLASSID="clsid:5C9DF3D3-81B1-42C4-BED6-658F17748686" id="Pivot1"></OBJECT>

<SCRIPT LANGUAGE="VBScript">
Function Init()
	With Pivot1
		.BeginUpdate 
		.Import "C:\Program Files\Exontrol\ExPivot\Sample\data.txt"
		.PivotRows = "0[italic]"
		.PivotColumns = "count(0)[underline]"
		.PivotTotals = "count[bold,strikeout]"
		.ShowDataOnDblClick = True
		.EndUpdate 
	End With
End Function
</SCRIPT>
</BODY>

32
Does your control support subscript or superscript, in HTML captions

<BODY onload="Init()">
<OBJECT CLASSID="clsid:5C9DF3D3-81B1-42C4-BED6-658F17748686" id="Pivot1"></OBJECT>

<SCRIPT LANGUAGE="VBScript">
Function Init()
	With Pivot1
		.HeaderHeight = 22
		.Import "C:\Program Files\Exontrol\ExPivot\Sample\data.txt"
		.DataColumns.item("ShipCountry").Caption = "ShipCountry<font ;7><off 6><sha ;;0>subscript"
		.DataColumns.item("ShipRegion").Caption = "ShipRegion<font ;7><off -6><sha ;;0>superscript"
		.Refresh 
	End With
End Function
</SCRIPT>
</BODY>

31
Is it possible to define a different background color for the pivot bar

<BODY onload="Init()">
<OBJECT CLASSID="clsid:5C9DF3D3-81B1-42C4-BED6-658F17748686" id="Pivot1"></OBJECT>

<SCRIPT LANGUAGE="VBScript">
Function Init()
	With Pivot1
		.Background(97) = RGB(240,240,240)
	End With
End Function
</SCRIPT>
</BODY>

30
How can I display an icon/image to Content sub-menu

<BODY onload="Init()">
<OBJECT CLASSID="clsid:5C9DF3D3-81B1-42C4-BED6-658F17748686" id="Pivot1"></OBJECT>

<SCRIPT LANGUAGE="VBScript">
Function Init()
	With Pivot1
		.Import "C:\Program Files\Exontrol\ExPivot\Sample\data.txt"
		.Images "gBJJgBAIDAAGAAEAAQhYAf8Pf4hh0QihCJo2AEZjQAjEZFEaIEaEEaAIAkcbk0olUrlktl0vmExmUzmk1m03nE5nU7nk9n0/oFBoVDolFo1HpFJpVLplNp1PqFRqVTq" & _
	"lVq1XrFZrVbrldr1fsFhsVjslls1ntFptVrtltt1vuFxuVzul1u13vF5vV7vl9v1/wGBwWDwmFw2HxGJxWLxmNx0xiFdyOTh8Tf9ZymXx+QytcyNgz8r0OblWjyWds+m" & _
	"0ka1Vf1ta1+r1mos2xrG2xeZ0+a0W0qOx3GO4NV3WeyvD2XJ5XL5nN51aiw+lfSj0gkUkAEllHanHI5j/cHg8EZf7w8vl8j4f/qfEZeB09/vjLAB30+kZQAP/P5/H6/y" & _
	"NAOAEAwCjMBwFAEDwJBMDwLBYAP2/8Hv8/gAGAD8LQs9w/nhDY/oygIA="
		.FormatContents.item("numeric").Name = "<img>1</img> Numeric"
		.PivotRows = "5[content=numeric]"
	End With
End Function
</SCRIPT>
</BODY>

29
How can I change the selection background in the control's context menu

<BODY onload="Init()">
<OBJECT CLASSID="clsid:5C9DF3D3-81B1-42C4-BED6-658F17748686" id="Pivot1"></OBJECT>

<SCRIPT LANGUAGE="VBScript">
Function Init()
	With Pivot1
		.Import "C:\Program Files\Exontrol\ExPivot\Sample\data.txt"
		.Background(20) = RGB(255,0,0)
	End With
End Function
</SCRIPT>
</BODY>

28
How can I display the column as date in a long format

<BODY onload="Init()">
<OBJECT CLASSID="clsid:5C9DF3D3-81B1-42C4-BED6-658F17748686" id="Pivot1"></OBJECT>

<SCRIPT LANGUAGE="VBScript">
Function Init()
	With Pivot1
		.Import "C:\Program Files\Exontrol\ExPivot\Sample\data.txt"
		.FormatContents.Add "longdate","longdate(date(value))"
		.PivotRows = "9[content=longdate]"
	End With
End Function
</SCRIPT>
</BODY>

27
Is it possible to display the column in upper-case

<BODY onload="Init()">
<OBJECT CLASSID="clsid:5C9DF3D3-81B1-42C4-BED6-658F17748686" id="Pivot1"></OBJECT>

<SCRIPT LANGUAGE="VBScript">
Function Init()
	With Pivot1
		.Import "C:\Program Files\Exontrol\ExPivot\Sample\data.txt"
		.FormatContents.Add "upper","upper(value)"
		.PivotRows = "0[content=upper]"
	End With
End Function
</SCRIPT>
</BODY>

26
How can I programatically bold a column

<BODY onload="Init()">
<OBJECT CLASSID="clsid:5C9DF3D3-81B1-42C4-BED6-658F17748686" id="Pivot1"></OBJECT>

<SCRIPT LANGUAGE="VBScript">
Function Init()
	With Pivot1
		.Import "C:\Program Files\Exontrol\ExPivot\Sample\data.txt"
		.PivotRows = "0[bold]"
	End With
End Function
</SCRIPT>
</BODY>

25
How can I display the total with a different foreground color

<BODY onload="Init()">
<OBJECT CLASSID="clsid:5C9DF3D3-81B1-42C4-BED6-658F17748686" id="Pivot1"></OBJECT>

<SCRIPT LANGUAGE="VBScript">
Function Init()
	With Pivot1
		.FormatAppearances.Add("fore").ForeColor = RGB(255,0,0)
		.Import "C:\Program Files\Exontrol\ExPivot\Sample\data.txt"
		.PivotRows = "0"
		.PivotColumns = "sum(5)"
		.PivotTotals = "sum[fore,bold]"
	End With
End Function
</SCRIPT>
</BODY>

24
How can I display the total with a different background color/ebn

<BODY onload="Init()">
<OBJECT CLASSID="clsid:5C9DF3D3-81B1-42C4-BED6-658F17748686" id="Pivot1"></OBJECT>

<SCRIPT LANGUAGE="VBScript">
Function Init()
	With Pivot1
		.VisualAppearance.Add 1,"c:\exontrol\images\normal.ebn"
		.FormatAppearances.Add("back").BackColor = &H1000000
		.Import "C:\Program Files\Exontrol\ExPivot\Sample\data.txt"
		.PivotRows = "0"
		.PivotColumns = "sum(5)"
		.PivotTotals = "sum[back]"
	End With
End Function
</SCRIPT>
</BODY>

23
How can I display the total with a solid background color

<BODY onload="Init()">
<OBJECT CLASSID="clsid:5C9DF3D3-81B1-42C4-BED6-658F17748686" id="Pivot1"></OBJECT>

<SCRIPT LANGUAGE="VBScript">
Function Init()
	With Pivot1
		.FormatAppearances.Add("back").BackColor = RGB(240,240,240)
		.Import "C:\Program Files\Exontrol\ExPivot\Sample\data.txt"
		.PivotRows = "0"
		.PivotColumns = "sum(5)"
		.PivotTotals = "sum[back]"
	End With
End Function
</SCRIPT>
</BODY>

22
Is it possible to change the "bold" caption in the control's context menu

<BODY onload="Init()">
<OBJECT CLASSID="clsid:5C9DF3D3-81B1-42C4-BED6-658F17748686" id="Pivot1"></OBJECT>

<SCRIPT LANGUAGE="VBScript">
Function Init()
	With Pivot1
		.Import "C:\Program Files\Exontrol\ExPivot\Sample\data.txt"
		.FormatAppearances.item("bold").Name = "Ingrosat"
	End With
End Function
</SCRIPT>
</BODY>

21
Is it possible to show no Exclude field in the filter window

<BODY onload="Init()">
<OBJECT CLASSID="clsid:5C9DF3D3-81B1-42C4-BED6-658F17748686" id="Pivot1"></OBJECT>

<SCRIPT LANGUAGE="VBScript">
Function Init()
	With Pivot1
		.Import "C:\Program Files\Exontrol\ExPivot\Sample\data.txt"
		.DisplayFilterList = 288 ' FilterListEnum.exShowCheckBox Or FilterListEnum.exSortItemsAsc
	End With
End Function
</SCRIPT>
</BODY>

20
How can I prevent showing the drop down filter button

<BODY onload="Init()">
<OBJECT CLASSID="clsid:5C9DF3D3-81B1-42C4-BED6-658F17748686" id="Pivot1"></OBJECT>

<SCRIPT LANGUAGE="VBScript">
Function Init()
	With Pivot1
		.Import "C:\Program Files\Exontrol\ExPivot\Sample\data.txt"
		.DisplayFilterList = 2
	End With
End Function
</SCRIPT>
</BODY>

19
How do I get the count of positive values only

<BODY onload="Init()">
<OBJECT CLASSID="clsid:5C9DF3D3-81B1-42C4-BED6-658F17748686" id="Pivot1"></OBJECT>

<SCRIPT LANGUAGE="VBScript">
Function Init()
	With Pivot1
		.Import "C:\Program Files\Exontrol\ExPivot\Sample\data.txt"
		.Aggregates.Add("positive","sum").FormatValue = "value < 0 ? 0 : 1"
		.PivotRows = "0"
		.PivotColumns = "positive(5)"
	End With
End Function
</SCRIPT>
</BODY>

18
How do I get the sum for negative values only

<BODY onload="Init()">
<OBJECT CLASSID="clsid:5C9DF3D3-81B1-42C4-BED6-658F17748686" id="Pivot1"></OBJECT>

<SCRIPT LANGUAGE="VBScript">
Function Init()
	With Pivot1
		.Import "C:\Program Files\Exontrol\ExPivot\Sample\data.txt"
		.Aggregates.Add("negative","sum").FormatValue = "value < 0 ? value : 0"
		.PivotRows = "0"
		.PivotColumns = "negative(5)"
	End With
End Function
</SCRIPT>
</BODY>

17
My data stores the data as strings, is it possible to load the data using Import method

<BODY onload="Init()">
<OBJECT CLASSID="clsid:5C9DF3D3-81B1-42C4-BED6-658F17748686" id="Pivot1"></OBJECT>

<SCRIPT LANGUAGE="VBScript">
Function Init()
	With Pivot1
		.Import "'string 1';'string 2'#'string 3';'string 4'","str=`'` eor='#' eof=';' hdr=0"
	End With
End Function
</SCRIPT>
</BODY>

16
Is it possible to load data using different separators

<BODY onload="Init()">
<OBJECT CLASSID="clsid:5C9DF3D3-81B1-42C4-BED6-658F17748686" id="Pivot1"></OBJECT>

<SCRIPT LANGUAGE="VBScript">
Function Init()
	With Pivot1
		.Import "item 1;item 2#item 3;item 4","eor='#' eof=';' hdr=0"
	End With
End Function
</SCRIPT>
</BODY>

15
Is it possible to align a column

<BODY onload="Init()">
<OBJECT CLASSID="clsid:5C9DF3D3-81B1-42C4-BED6-658F17748686" id="Pivot1"></OBJECT>

<SCRIPT LANGUAGE="VBScript">
Function Init()
	With Pivot1
		.Import "C:\Program Files\Exontrol\ExPivot\Sample\data.txt"
		With .DataColumns.item(0)
			.Alignment = 2
			.HeaderAlignment = 2
		End With
		.Refresh 
	End With
End Function
</SCRIPT>
</BODY>

14
How can I change by code the column/rows background color

<BODY onload="Init()">
<OBJECT CLASSID="clsid:5C9DF3D3-81B1-42C4-BED6-658F17748686" id="Pivot1"></OBJECT>

<SCRIPT LANGUAGE="VBScript">
Function Init()
	With Pivot1
		.BeginUpdate 
		.VisualAppearance.Add 1,"c:\exontrol\images\normal.ebn"
		.Import "C:\Program Files\Exontrol\ExPivot\Sample\data.txt"
		.FormatAppearances.Add("aka").BackColor = &H1000000
		.PivotRows = "0[aka]"
		.EndUpdate 
	End With
End Function
</SCRIPT>
</BODY>

13
How can I apply by code any appearance to my list

<BODY onload="Init()">
<OBJECT CLASSID="clsid:5C9DF3D3-81B1-42C4-BED6-658F17748686" id="Pivot1"></OBJECT>

<SCRIPT LANGUAGE="VBScript">
Function Init()
	With Pivot1
		.BeginUpdate 
		.Import "C:\Program Files\Exontrol\ExPivot\Sample\data.txt"
		.PivotRows = "0[italic]"
		.PivotColumns = "count(0)[underline]"
		.PivotTotals = "count[bold,strikeout]"
		.EndUpdate 
	End With
End Function
</SCRIPT>
</BODY>

12
How can I display an icon instead SUM/Total field

<BODY onload="Init()">
<OBJECT CLASSID="clsid:5C9DF3D3-81B1-42C4-BED6-658F17748686" id="Pivot1"></OBJECT>

<SCRIPT LANGUAGE="VBScript">
Function Init()
	With Pivot1
		.BeginUpdate 
		.Images "gBJJgBggAAwAAgACEKAD/hz/EMNh8TIRNGwAjEZAEXjAojJAjIgjIBAEijUlk8plUrlktl0vmExmUzmk1m03nE5nU7nk9n0/oFBoVDolFo1HpFJpVLplNp1PqFRqVTq" & _
	"lVq1XrFZrVbrldr1fsFhsVjslls1ntFptVrtltt1vuFxuVzul1u13vF5vV7vl9oEEwGBwWDwmFw2Hw9+xUsxGNx2Px+LyUnyGVy2VyeZAGNjIJjITjIb0OjjGi0ukAAV" & _
	"jILzmayWtAGejCvjLh2u3jG23O4ACx1ew11+zEYGsZZsZUe/wkZ4sYZvD4PCy8kjAzjLFjKd5WDjIz6HRvnTwUZGMZX8ZTPb8XU8Hh9cFjALjKVjK5jIv9/w9t78WdjJ" & _
	"IoyWr7sKjIWu+/a8Og2QAEajLaIxAzlwhB0DwQuzoECjJWw1DiMQ3D0OgAQMKwsuj8xOy0SrzFEWMdFUExbGMCRfC8ZRswMaLsiofJVHiOo+kKRs2lL2Jsh8cyQo6Ag=" & _
	"="
		.Import "C:\Program Files\Exontrol\ExPivot\Sample\data.txt"
		With .Aggregates.item("sum")
			.Name = "<img>1</img> Sum"
			.Caption = "<img>1</img>"
		End With
		.PivotColumnsFloatBarVisible = True
		.FormatPivotHeader = "iaggregate ? (caggregate + (iaggregate != 5 ? ' ' : '') + caption) : caption"
		.FormatPivotTotal = "caggregate"
		.PivotRows = "0"
		.PivotColumns = "sum(5)"
		.PivotTotals = "sum,count"
		.EndUpdate 
	End With
End Function
</SCRIPT>
</BODY>

11
How can I change the caption to be displayed when dragging an aggregate function

<BODY onload="Init()">
<OBJECT CLASSID="clsid:5C9DF3D3-81B1-42C4-BED6-658F17748686" id="Pivot1"></OBJECT>

<SCRIPT LANGUAGE="VBScript">
Function Init()
	With Pivot1
		.BeginUpdate 
		.Import "C:\Program Files\Exontrol\ExPivot\Sample\data.txt"
		.PivotColumnsFloatBarVisible = True
		.FormatPivotHeader = "(iaggregate ? ('<b>' + upper(caggregate) + '</b> of ' + caption) : caption)"
		.PivotRows = "0"
		.PivotColumns = "sum(5)"
		.PivotTotals = "sum,count"
		.EndUpdate 
	End With
End Function
</SCRIPT>
</BODY>

10
I am using Import method, just wondering if I can rename the columns

<BODY onload="Init()">
<OBJECT CLASSID="clsid:5C9DF3D3-81B1-42C4-BED6-658F17748686" id="Pivot1"></OBJECT>

<SCRIPT LANGUAGE="VBScript">
Function Init()
	With Pivot1
		.Import "C:\Program Files\Exontrol\ExPivot\Sample\data.txt"
		With .DataColumns.item(0)
			.Caption = "New Caption"
			.PivotCaption = "New Pivot Caption"
		End With
		.Refresh 
	End With
End Function
</SCRIPT>
</BODY>

9
Does your control support Fit-To-Page Print and Print Preview

<BODY onload="Init()">
<OBJECT CLASSID="clsid:5C9DF3D3-81B1-42C4-BED6-658F17748686" id="Pivot1"></OBJECT>

<SCRIPT LANGUAGE="VBScript">
Function Init()
	With Pivot1
		.Import "C:\Program Files\Exontrol\ExPivot\Sample\data.txt"
		.PivotRows = "0,1,2"
		.ExpandAll 
		With CreateObject("Exontrol.Print")
			.Options = "FitToPage = On"
			.PrintExts = Pivot1
			.Preview 
		End With
	End With
End Function
</SCRIPT>
</BODY>

8
How can I print the control

<BODY onload="Init()">
<OBJECT CLASSID="clsid:5C9DF3D3-81B1-42C4-BED6-658F17748686" id="Pivot1"></OBJECT>

<SCRIPT LANGUAGE="VBScript">
Function Init()
	With Pivot1
		.Import "C:\Program Files\Exontrol\ExPivot\Sample\data.txt"
		.PivotRows = "0,1,2"
		.ExpandAll 
		With CreateObject("Exontrol.Print")
			.PrintExts = Pivot1
			.Preview 
		End With
	End With
End Function
</SCRIPT>
</BODY>

7
How can I hide the pivot bar (hide completly)

<BODY onload="Init()">
<OBJECT CLASSID="clsid:5C9DF3D3-81B1-42C4-BED6-658F17748686" id="Pivot1"></OBJECT>

<SCRIPT LANGUAGE="VBScript">
Function Init()
	With Pivot1
		.PivotBarVisible = 4058 ' PivotBarVisibleEnum.exPivotBarAllowResizeColumns Or PivotBarVisibleEnum.exPivotBarAllowUndoRedo Or PivotBarVisibleEnum.exPivotBarAutoUpdate Or PivotBarVisibleEnum.exPivotBarAllowFormatContent Or PivotBarVisibleEnum.exPivotBarAllowFormatAppearance Or PivotBarVisibleEnum.exPivotBarAllowValues Or PivotBarVisibleEnum.exPivotBarShowTotals Or PivotBarVisibleEnum.exPivotBarAutoFit Or PivotBarVisibleEnum.exPivotBarSizable
	End With
End Function
</SCRIPT>
</BODY>

6
How can I hide the pivot bar (auto-hide)

<BODY onload="Init()">
<OBJECT CLASSID="clsid:5C9DF3D3-81B1-42C4-BED6-658F17748686" id="Pivot1"></OBJECT>

<SCRIPT LANGUAGE="VBScript">
Function Init()
	With Pivot1
		.PivotBarVisible = 4083 ' PivotBarVisibleEnum.exPivotBarAllowResizeColumns Or PivotBarVisibleEnum.exPivotBarAllowUndoRedo Or PivotBarVisibleEnum.exPivotBarAutoUpdate Or PivotBarVisibleEnum.exPivotBarAllowFormatContent Or PivotBarVisibleEnum.exPivotBarAllowFormatAppearance Or PivotBarVisibleEnum.exPivotBarAllowValues Or PivotBarVisibleEnum.exPivotBarAutoHide Or PivotBarVisibleEnum.exPivotBarShowTotals Or PivotBarVisibleEnum.exPivotBarSizable Or PivotBarVisibleEnum.exPivotBarVisible
	End With
End Function
</SCRIPT>
</BODY>

5
How can I count and get the total of a specified column

<BODY onload="Init()">
<OBJECT CLASSID="clsid:5C9DF3D3-81B1-42C4-BED6-658F17748686" id="Pivot1"></OBJECT>

<SCRIPT LANGUAGE="VBScript">
Function Init()
	With Pivot1
		.BeginUpdate 
		.Import "C:\Program Files\Exontrol\ExPivot\Sample\data.txt"
		.PivotColumnsFloatBarVisible = True
		.PivotRows = "0"
		.PivotColumns = "sum(5)"
		.PivotTotals = "sum,count"
		.EndUpdate 
	End With
End Function
</SCRIPT>
</BODY>

4
How can I add show the columns once I grouped a column

<BODY onload="Init()">
<OBJECT CLASSID="clsid:5C9DF3D3-81B1-42C4-BED6-658F17748686" id="Pivot1"></OBJECT>

<SCRIPT LANGUAGE="VBScript">
Function Init()
	With Pivot1
		.Import "C:\Program Files\Exontrol\ExPivot\Sample\data.txt"
		.PivotRows = "0"
		.PivotColumnsFloatBarVisible = True
	End With
End Function
</SCRIPT>
</BODY>

3
How can I programatically group the columns

<BODY onload="Init()">
<OBJECT CLASSID="clsid:5C9DF3D3-81B1-42C4-BED6-658F17748686" id="Pivot1"></OBJECT>

<SCRIPT LANGUAGE="VBScript">
Function Init()
	With Pivot1
		.Import "C:\Program Files\Exontrol\ExPivot\Sample\data.txt"
		.PivotRows = "0:D"
	End With
End Function
</SCRIPT>
</BODY>

2
Is it possible to load data from a data source

<BODY onload="Init()">
<OBJECT CLASSID="clsid:5C9DF3D3-81B1-42C4-BED6-658F17748686" id="Pivot1"></OBJECT>

<SCRIPT LANGUAGE="VBScript">
Function Init()
	With Pivot1
		Set rs = CreateObject("ADOR.Recordset")
		With rs
			.Open "Data","Provider=Microsoft.ACE.OLEDB.12.0;Data Source=C:\Program Files\Exontrol\ExPivot\Sample\Access\sample.accdb",3,3
		End With
		.DataSource = rs
	End With
End Function
</SCRIPT>
</BODY>

1
How can I load data

<BODY onload="Init()">
<OBJECT CLASSID="clsid:5C9DF3D3-81B1-42C4-BED6-658F17748686" id="Pivot1"></OBJECT>

<SCRIPT LANGUAGE="VBScript">
Function Init()
	With Pivot1
		.Import "C:\Program Files\Exontrol\ExPivot\Sample\data.txt"
	End With
End Function
</SCRIPT>
</BODY>